*{
	margin: 0;
	padding: 0;
}
html,body{
	background-color: #FFFFFF;
}
ul{
	list-style: none;
}
#body{
    padding: 20px 0;
}
.demo-title{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	text-indent: .5em;
	pointer-events: none;
}
.line-between{
	width: 100%;
	height: 3px;
	background-color: #7a7a7a;
	margin: 20px 0;
}

/* 以下为轮播图样式 */
.carousel-content{
	width: 100%;
	height: 600px;
	position: relative;
	margin: 0 auto;
}
.carousel{
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}
.carousel li{
	float: left;
	position: absolute;
	display: none;
}
.carousel li,.carousel li img{
	width: 100%;
	height: 100%;
}
.carousel-index{
	position: absolute;
    bottom: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
}
.carousel-index li{
	float: left;
    width: 0;
    height: 0;
    line-height: 18px;
    text-align: center;
    border-radius: 10px;
    background-color: #FFFFFF;
    font-size: 0;
    cursor: pointer;
    margin: 0 8px;
    color: #0BB78E;
}
.carousel-index li.current-index{
	background-color: #2FC7A0;
	color: #FFFFFF;
}
.carousel-index li:hover{
	background-color: #2FC7A0;
	color: #FFFFFF;
}
.carousel-prev,.carousel-next{
	position: absolute;
	top: 0;
	bottom: 0;
	cursor: pointer;
	margin: auto;
	width: 32px;
	height: 40px;
}
.carousel-prev img,.carousel-next img{
	width: 100%;
	height: 100%;
}
.carousel-prev{
	left: 0;
}
.carousel-next{
	right: 0;
}